[IA64] fix make world
authorawilliam@xenbuild.aw <awilliam@xenbuild.aw>
Mon, 3 Apr 2006 14:58:10 +0000 (08:58 -0600)
committerawilliam@xenbuild.aw <awilliam@xenbuild.aw>
Mon, 3 Apr 2006 14:58:10 +0000 (08:58 -0600)
When the arch/ia64/Makefile was cloned from the Linux tree, the install
target was changed to remove a dependency on vmlinux.gz.  That makes
sense, but the invocation of install.sh in that target still used $<
to refer to the dependency that had been removed.  Hence, install.sh
would fail, and make world would stop prematurely.

Signed-off-by: Al Stone <ahs3@fc.hp.com>
linux-2.6-xen-sparse/arch/ia64/Makefile

index 172b4cfd440bac6fd6400f361e6499eb8e7b5379..040bd516067ca304fdb78e6d078c0f2f4af9bbea 100644 (file)
@@ -91,7 +91,7 @@ boot: lib/lib.a vmlinux
        $(Q)$(MAKE) $(build)=$(boot) $@
 
 install:
-       sh $(srctree)/arch/ia64/install.sh $(KERNELRELEASE) $< System.map "$(INSTALL_PATH)"
+       -yes | sh $(srctree)/arch/ia64/install.sh $(KERNELRELEASE) vmlinux.gz System.map "$(INSTALL_PATH)"
 
 define archhelp
   echo '* compressed   - Build compressed kernel image'